Class com.symantec.itools.vcafe.openapi.plugin.PlugInDialog
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.symantec.itools.vcafe.openapi.plugin.PlugInDialog

Object
   |
   +----PlugInView
           |
           +----PlugInWindow
                   |
                   +----com.symantec.itools.vcafe.openapi.plugin.PlugInDialog

public abstract class PlugInDialog
extends PlugInWindow
DialogView is the base class containing methods required to integrate a dialog box into Visual Cafe environment.


Variable Index

 o CENTER_IN_DESKTOP
 o CENTER_IN_NONE
 o CENTER_IN_VCAFE

Constructor Index

 o com.symantec.itools.vcafe.openapi.plugin.PlugInDialog()

Method Index

 o centerAt()
This method is called by the framework to find out how the dialog box should be centered i.e with respect to Visual Cafe window or the desktop window.
 o isModal()
This method is called by the framework to find out how the dialog box should be created i.e modal/modeless.
 o isResizable()
This method is called by the framework to find if the dialog box should be resizable.

Variables

 o CENTER_IN_DESKTOP
public static final int CENTER_IN_DESKTOP
 o CENTER_IN_NONE
public static final int CENTER_IN_NONE
 o CENTER_IN_VCAFE
public static final int CENTER_IN_VCAFE

Constructors

 o PlugInDialog
public PlugInDialog()

Methods

 o centerAt
public int centerAt()
This method is called by the framework to find out how the dialog box should be centered i.e with respect to Visual Cafe window or the desktop window. The default implementation does not perform any centering.

 o isModal
public final boolean isModal()
This method is called by the framework to find out how the dialog box should be created i.e modal/modeless. The default implementation makes it a modal dialog box.

 o isResizable
public boolean isResizable()
This method is called by the framework to find if the dialog box should be resizable. The default implementation returns false.

Returns:
true for resizable and false otherwise
Overrides:
isResizable in class PlugInWindow

All Packages  Class Hierarchy  This Package  Previous  Next  Index